home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 115
/
FreelogNo115-MaiJuin2013.iso
/
Internet
/
AvantBrowser
/
asetup.exe
/
_data
/
webkit
/
chrome_100_percent.pak
/
Unnamed File 000032.txt
< prev
next >
Wrap
Text File
|
2013-04-03
|
2KB
|
46 lines
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Custom bindings for the fileBrowserPrivate API.
var fileBrowserPrivateNatives = requireNative('file_browser_private');
var GetLocalFileSystem = fileBrowserPrivateNatives.GetLocalFileSystem;
var fileBrowserNatives = requireNative('file_browser_handler');
var GetExternalFileEntry = fileBrowserNatives.GetExternalFileEntry;
var chromeHidden = requireNative('chrome_hidden').GetChromeHidden();
chromeHidden.registerCustomHook('fileBrowserPrivate', function(bindingsAPI) {
var apiFunctions = bindingsAPI.apiFunctions;
apiFunctions.setCustomCallback('requestLocalFileSystem',
function(name, request, response) {
var fs = null;
if (response && !response.error)
fs = GetLocalFileSystem(response.name, response.path);
if (request.callback)
request.callback(fs);
request.callback = null;
});
apiFunctions.setCustomCallback('searchDrive',
function(name, request, response) {
if (response && !response.error && response.results) {
for (var i = 0; i < response.results.length; i++) {
response.results[i].entry =
GetExternalFileEntry(response.results[i].entry);
}
}
// So |request.callback| doesn't break if response is not defined.
if (!response)
response = {};
if (request.callback)
request.callback(response.results, response.nextFeed);
request.callback = null;
});
});